home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / plat-s3c24xx / include / plat / devs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  1.4 KB  |  50 lines

  1. /* linux/include/asm-arm/plat-s3c24xx/devs.h
  2.  *
  3.  * Copyright (c) 2004 Simtec Electronics
  4.  * Ben Dooks <ben@simtec.co.uk>
  5.  *
  6.  * Header file for s3c2410 standard platform devices
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11. */
  12. #include <linux/platform_device.h>
  13.  
  14. struct s3c24xx_uart_resources {
  15.     struct resource        *resources;
  16.     unsigned long         nr_resources;
  17. };
  18.  
  19. extern struct s3c24xx_uart_resources s3c2410_uart_resources[];
  20.  
  21. extern struct platform_device *s3c24xx_uart_devs[];
  22. extern struct platform_device *s3c24xx_uart_src[];
  23.  
  24. extern struct platform_device s3c_device_timer[];
  25.  
  26. extern struct platform_device s3c_device_usb;
  27. extern struct platform_device s3c_device_lcd;
  28. extern struct platform_device s3c_device_wdt;
  29. extern struct platform_device s3c_device_i2c;
  30. extern struct platform_device s3c_device_iis;
  31. extern struct platform_device s3c_device_rtc;
  32. extern struct platform_device s3c_device_adc;
  33. extern struct platform_device s3c_device_sdi;
  34. extern struct platform_device s3c_device_hsmmc;
  35.  
  36. extern struct platform_device s3c_device_spi0;
  37. extern struct platform_device s3c_device_spi1;
  38.  
  39. extern struct platform_device s3c_device_nand;
  40.  
  41. extern struct platform_device s3c_device_usbgadget;
  42.  
  43. /* s3c2440 specific devices */
  44.  
  45. #ifdef CONFIG_CPU_S3C2440
  46.  
  47. extern struct platform_device s3c_device_camif;
  48.  
  49. #endif
  50.